net/http.atomicBool.isSet (method)

11 uses

	net/http (current package)
		client.go#L410: 	return stopTimer, timedOut.isSet
		server.go#L526: func (b *atomicBool) isSet() bool { return atomic.LoadInt32((*int32)(b)) != 0 }
		server.go#L900: 	if ecr.closed.isSet() {
		server.go#L904: 	if !w.wroteContinue && w.canWriteContinue.isSet() && !w.conn.hijacked() {
		server.go#L907: 		if w.canWriteContinue.isSet() {
		server.go#L1290: 	if w.handlerDone.isSet() && !trailers && !hasTE && bodyAllowedForStatus(w.status) && header.get("Content-Length") == "" && (!isHEAD || len(p) > 0) {
		server.go#L1332: 	if ecr, ok := w.req.Body.(*expectContinueReader); ok && !ecr.sawEOF.isSet() {
		server.go#L1590: 	if w.canWriteContinue.isSet() {
		server.go#L2021: 	if w.handlerDone.isSet() {
		server.go#L2043: 	if w.handlerDone.isSet() {
		server.go#L3173: 	return s.inShutdown.isSet()